home *** CD-ROM | disk | FTP | other *** search
-
- /*
- Copyright 1993 Jeremy Slade.
-
- You are free to use all or any parts of the Bypass project
- however you wish, just give credit where credit is due.
- The author (Jeremy Slade) shall not be held responsible
- for any damages that result out of use or misuse of any
- part of this project.
-
- */
-
- /*
- Project: Bypass
-
- File: BypassController.h
-
- Description:
-
- This file contains the Class interface for the BypassController. See BypassController.m for details on the actual operations it performs.
-
- Original Author: Jeremy Slade
-
- Revision History:
- Created
- JGS Sat Apr 10 14:28:17 MDT 1993
-
- */
-
- #ifndef Bypass_h
- #define Bypass_h
-
- #import <objc/Object.h>
-
-
- @interface BypassController : Object
- {
- }
-
- - (int)run;
-
- - (int)disableDock;
- - (int)enableDock;
-
- @end
-
-
- #endif // Bypass_h
-